home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / laptop-mode-tools.postinst < prev    next >
Encoding:
Text File  |  2012-05-20  |  2.2 KB  |  77 lines

  1. #! /bin/sh
  2. # postinst script for laptop-mode-tools
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <postinst> `configure' <most-recently-configured-version>
  10. #        * <old-postinst> `abort-upgrade' <new version>
  11. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  12. #          <new-version>
  13. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  14. #          <failed-install-package> <version> `removing'
  15. #          <conflicting-package> <version>
  16. # for details, see http://www.debian.org/doc/debian-policy/ or
  17. # the debian-policy package
  18. #
  19. # quoting from the policy:
  20. #     Any necessary prompting should almost always be confined to the
  21. #     post-installation script, and should be protected with a conditional
  22. #     so that unnecessary prompting doesn't happen if a package's
  23. #     installation fails and the `postinst' is called with `abort-upgrade',
  24. #     `abort-remove' or `abort-deconfigure'.
  25.  
  26. case "$1" in
  27.   configure)
  28.     acpi_pid=`pidof acpid || echo 0`
  29.     if [ ! -z $acpi_pid -a $acpi_pid != 0 ]; then
  30.       if [ -x /etc/init.d/acpid ]; then
  31.         invoke-rc.d acpid force-reload || true
  32.       fi
  33.     fi
  34.  
  35.     apm_pid=`pidof apmd || echo 0`
  36.     if [ ! -z $apm_pid -a $apm_pid != 0 ]; then
  37.       if [ -x /etc/init.d/apmd ]; then
  38.         invoke-rc.d apmd force-reload || true
  39.       fi
  40.     fi
  41.  
  42.     pbbuttonsd_pid=`pidof pbbuttonsd || echo 0`
  43.     if [ ! -z $pbbuttonsd_pid -a $pbbuttonsd_pid != 0 ]; then
  44.       if [ -x /etc/init.d/pbbuttonsd ]; then
  45.         invoke-rc.d pbbuttonsd force-reload || true
  46.       fi
  47.     fi
  48.  
  49.     pmud_pid=`pidof pmud || echo 0`
  50.     if [ ! -z $pmud_pid -a $pmud_pid != 0 ]; then
  51.       if [ -x /etc/init.d/pmud ]; then
  52.         invoke-rc.d pmud force-reload || true
  53.       fi
  54.     fi
  55.  
  56.   ;;
  57.   abort-upgrade|abort-remove|abort-deconfigure|triggered)
  58.   ;;
  59.   *)
  60.     echo "postinst called with unknown argument \`$1'" >&2
  61.     exit 1
  62.   ;;
  63. esac
  64.  
  65. # dh_installdeb will replace this with shell code automatically
  66. # generated by other debhelper scripts.
  67.  
  68. # Automatically added by dh_installinit
  69. if [ -x "/etc/init.d/laptop-mode" ]; then
  70.     update-rc.d laptop-mode defaults 99 >/dev/null
  71.     invoke-rc.d laptop-mode start || exit $?
  72. fi
  73. # End automatically added section
  74.  
  75.  
  76. exit 0
  77.